home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Commodities / AddTools / MTCopy < prev    next >
AmigaDOS Script File  |  1996-09-26  |  628b  |  30 lines

  1. .KEY FROM/A,TO/A
  2. ; $VER MTCopy 1.2 (29.11.93) © Alessandro Sala
  3. ;
  4. ; Example script to execute a multitasking copy from Workbench using AddTools
  5. ; v1.20 - By Alessandro Sala
  6. ; Usage: Copy this file into your S: volume; select the source icon, the
  7. ;    destination icon (if this is a file, only its path will be
  8. ;    considered) and choose Copy from the Tools menu.
  9. ;
  10.  
  11. .BRA {
  12. .KET }
  13.  
  14. list >T:mtc_destp "{TO}" lformat="%P"
  15. set <T:mtc_destp >NIL: destP ?
  16.  
  17. delete >NIL: T:mtc_destp
  18.  
  19. if exists "{FROM}"
  20.     copy FROM "{FROM}" TO "$destP"
  21. endif
  22.  
  23. if exists "{FROM}.info"
  24.     copy FROM "{FROM}.info" TO "$destP"
  25. endif
  26.  
  27. echo "Completed."
  28.  
  29. wait 1 sec
  30.